home *** CD-ROM | disk | FTP | other *** search
- #include "MAD.h"
-
- ////////////////////////////////////////////////////////////
-
- #ifdef _MAC_H
- short iFileOpen( Ptr name);
- void iFileCreate( Ptr name, long);
-
- long iGetEOF( short iFileRefI);
- OSErr iRead( long size, Ptr dest, short iFileRefI);
- OSErr iWrite( long size, Ptr dest, short iFileRefI);
- OSErr iSeekCur( long size, short iFileRefI);
-
- void iClose( short iFileRefI);
-
- #ifndef __SHUDDUPH__
- char* strcpy( char*, const char*);
- int strcmp( const char *dst, const char* src);
- #endif
-
- #define UNFILE short
-
- #endif
-
-
- ////////////////////////////////////////////////////////////
-
- #ifdef _INTEL_H
- FILE* iFileOpen( Ptr name);
- void iFileCreate( Ptr name, long);
-
- long iGetEOF( FILE* iFileRefI);
- OSErr iRead( long size, Ptr dest, FILE* iFileRefI);
- OSErr iWrite( long size, Ptr dest, FILE* iFileRefI);
- OSErr iSeekCur( long size, FILE* iFileRefI);
-
- void iClose( FILE* iFileRefI);
-
- #include "stdio.h"
- #include "stdlib.h"
- #include "string.h"
-
- #define UNFILE FILE*
-
- #endif
-
- ////////////////////////////////////////////////////////////
-
- void INT32( void *msg_buf);
- void INT16( void *msg_buf);
- void MOT32( void *msg_buf);
- void MOT16( void *msg_buf);